home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / DJGPP / QDDVX102.ZIP / contrib / dvx / inc / sys / uio.h < prev    next >
Text File  |  1993-07-15  |  209b  |  14 lines

  1. /*
  2.  * DESQview/X Socket Library. Copyright (c) 1992 Quarterdeck Office Systems.
  3.  */
  4.  
  5. #ifndef _SYS_UIO_H_
  6. #define _SYS_UIO_H_
  7.  
  8. struct iovec {
  9.   char *iov_base;
  10.   unsigned long iov_len;
  11. };
  12.  
  13. #endif
  14.